home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 9 / AMUG BBS in a Box Volume IX (August 1993) (MacWizards).iso / Files / Prog / T / The Virtual Machine.cpt / VM Test Files / foxy.src < prev    next >
Encoding:
Text File  |  1992-03-19  |  298 b   |  20 lines  |  [TEXT/KAHL]

  1. ;This is a funky PDP-8 assembly language program
  2.  
  3. START:        JMP        REALSTART 
  4. VALUES:        DATA    1,3,3,4,5
  5.             STORE    5
  6. REALSTART:    CLA
  7.             TAD        VALUES         ;loop
  8. LOOP:        IAC
  9.             SNA
  10.             JMS        FIDDLE
  11.             RAL
  12.             HLT
  13.             JMP        5
  14.             
  15. FIDDLE:        NOP
  16.             ISZ        TEST
  17.             RTR
  18.             JMP        FIDDLE        ; hello people    
  19. TEST:        DATA     25            
  20.             END